home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Languguage OS 2
/
Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO
/
language
/
dino
/
dino_bot.1
/
source
/
shell2
/
dinocrdr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-03-10
|
317 b
|
16 lines
# Copyright, 1990, Regents of the University of Colorado
#
# This is a Bourne shell script that creates directories if they
# don't exist. Essentially it does "mkdir -p" on a machine that
# doesn't have this command.
#
dirs=`dinodrtn $1`
for temp in $dirs
do if test ! -d $temp
then mkdir $temp
fi
done